home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / music_utilities / pt141.dms / pt141.adf / ArexxExamples.lha / EP_OpenPLWindow.dopus < prev    next >
Text File  |  1993-10-05  |  306b  |  16 lines

  1. /* Eagleplayeransteuerung über Diropus
  2.    (c) 1993 DEFECT
  3.    öffnet Eagleplayer PlayerWindow
  4. */
  5. if (pos('rexx_EP',SHOW('Ports')) = 0) then 
  6.  do
  7.   address 'DOPUS.1'
  8.   toptext 'No Eagleplayer found'
  9.   exit
  10.  end
  11. address 'rexx_EP'
  12. openplwindow
  13. address 'DOPUS.1'
  14. toptext 'Eagleplayer: Playerwindow opened'
  15. exit
  16.